home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / DevCon / Milan_1991 / Devcon91.2 / Arexx / test.rexx < prev   
Encoding:
OS/2 REXX Batch file  |  1992-09-01  |  302 b   |  16 lines

  1. /* ARexx script to test mouse program */
  2. address 'MOUSE1'
  3. options prompt 'MOUSE1>'
  4.  
  5. do forever
  6.  
  7.     parse pull command    /* get a command from the user */
  8.  
  9.     drop rc                    /* clear out previous return code */
  10.  
  11.     drop result                /* clear out previous result */
  12.  
  13.     interpret command        /* execute the command */
  14.  
  15. end
  16.